From d883c179a74111a6804baf8cb8224235242a88fc Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Wed, 22 Jan 2014 17:47:21 +0000 Subject: [PATCH] libxc: Fix out-of-memory error handling in xc_cpupool_getinfo() Avoid freeing info then returning it to the caller. This is XSA-88. Coverity-ID: 1056192 Signed-off-by: Andrew Cooper Reviewed-by: Jan Beulich --- tools/libxc/xc_cpupool.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/libxc/xc_cpupool.c b/tools/libxc/xc_cpupool.c index c8c2a3379a..6393cfb1c2 100644 --- a/tools/libxc/xc_cpupool.c +++ b/tools/libxc/xc_cpupool.c @@ -104,6 +104,7 @@ xc_cpupoolinfo_t *xc_cpupool_getinfo(xc_interface *xch, info->cpumap = xc_cpumap_alloc(xch); if (!info->cpumap) { free(info); + info = NULL; goto out; } info->cpupool_id = sysctl.u.cpupool_op.cpupool_id; -- 2.30.2